|
|
| Ubicación en el Menú |
|---|
| Croquis -> Recortar/Extender |
| Entornos de trabajo |
| Croquis, Arquitectura |
| Atajo de teclado por defecto |
| T R |
| Introducido en versión |
| - |
| Ver también |
| Extrusión |
Esta herramienta recorta/corta y extiende líneas y polilíneas, y extruye caras.
A Draft Wire extended and then trimmed.
introduced in 26.3: For supported BIM objects, picking one of the object's end faces trims or extends it by adjusting its length and placement instead of its underlying wire geometry.
The single character keyboard shortcuts available in the task panel can be changed. See Draft Preferences. The shortcuts mentioned here are the default shortcuts.
Here is an example to explain the modifier keys. The left edge or the bottom edge of the U-shaped wire was extended. All Draft Snaps were turned off.
1.1 and below: This command could also extrude a face into a Part Extrude object. This functionality is now a separate command, see BIM ExtrudeFace. introduced in 26.3
No disponible. Mira la herramienta Extrusión.
introduced in 26.3: The extrude method example below remains valid; the GUI equivalent is now BIM ExtrudeFace rather than this command.
extrusion = extrude(obj, vector, solid=False)
obj is the object to be extruded.vector is the extrusion direction and distance.solid is True a solid is created instead of a shell.extrusion is returned with the created object.Example:
import FreeCAD as App
import Draft
doc = App.newDocument()
rectangle = Draft.make_rectangle(1500, 500)
doc.recompute()
vector = App.Vector(0, 0, 300)
solid = Draft.extrude(rectangle, vector, solid=True)
doc.recompute()